From: Pablo Ariño Muñoz Date: Sun, 23 Feb 2025 07:26:31 +0000 (+0100) Subject: Removed parenthesis and passed a nullptr for the disambiguation X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~2^2~34^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=a4f65c64e545db13c930d822b653865564a00577;p=nextcloud-desktop.git Removed parenthesis and passed a nullptr for the disambiguation Signed-off-by: Pablo Ariño Muñoz --- diff --git a/src/gui/tray/usermodel.cpp b/src/gui/tray/usermodel.cpp index 1f0020184..e67549d1b 100644 --- a/src/gui/tray/usermodel.cpp +++ b/src/gui/tray/usermodel.cpp @@ -174,7 +174,7 @@ void User::showDesktopNotification(const Activity &activity) void User::showDesktopNotification(const ActivityList &activityList) { - const auto subject = tr("%n notification(s)", "", activityList.count()); + const auto subject = tr("%n notifications", nullptr, activityList.count()); const auto notificationId = -static_cast(qHash(subject)); if (!canShowNotification(notificationId)) {